home *** CD-ROM | disk | FTP | other *** search
/ Aminet 43 / Aminet 43 (2001)(GTI - Schatztruhe)[!][Jun 2001].iso / Wildfire / Macros / editorDEMO.rexx < prev    next >
OS/2 REXX Batch file  |  1997-10-31  |  2KB  |  128 lines

  1. /*
  2. ------------------------------------------------------------
  3.  EditorDEMO.rexx
  4.  
  5.  This script demonstrates some editor-features
  6.  
  7.  Copyright ©1996 WK-Artworks
  8. ------------------------------------------------------------
  9. */
  10.  
  11. if ~show('P','Wildfire') then do
  12.  say " Error: The Wildfire-program must be started before executing this script."
  13.  exit
  14. end
  15.  
  16. address "Wildfire"
  17. options results
  18.  
  19. M_CLOSEEDITOR
  20. E_CLEAR
  21.  
  22. txt_text "tutorial/editor/txt1"
  23. txt_centre
  24. txt_wait
  25.  
  26. txt_text "tutorial/editor/txt2"
  27. txt_centre
  28. m_wait 3
  29.  
  30. M_OPENEDITOR
  31. m_wait 2
  32.  
  33. txt_text "tutorial/editor/txt3"
  34. txt_centre
  35. txt_wait
  36.  
  37. t_getfile Anim1
  38. filename1=result
  39.  
  40. t_getfile Anim2
  41. filename2=result
  42.  
  43. E_AADD filename1
  44. E_AADD filename2
  45.  
  46. txt_text "tutorial/editor/txt4"
  47. txt_centre
  48. txt_wait
  49.  
  50. E_ASELECT filename1
  51. E_AINFO
  52. EAI_DISPLAY NORMAL
  53. m_wait 2
  54. EAI_DISPLAY ZOOMED
  55. m_wait 2
  56. EAI_DISPLAY DITHERED
  57. m_wait 2
  58. EAI_CACHING ON
  59. m_wait 2
  60. EAI_CACHING OFF
  61. EAI_DISPLAY NORMAL
  62. m_wait 4
  63. EAI_CLOSE
  64.  
  65. E_ASELECT filename2
  66. m_wait 3
  67. E_AINFO
  68. m_wait 4
  69. EAI_CLOSE
  70.  
  71. txt_text "tutorial/editor/txt5"
  72. txt_centre
  73. txt_wait
  74.  
  75. t_getfile Module1
  76. filename3=result
  77.  
  78. E_MADD filename3 MODULE
  79.  
  80. m_wait 3
  81.  
  82. txt_text "tutorial/editor/txt6"
  83. txt_centre
  84. txt_wait
  85.  
  86. E_MEDIT
  87. m_wait 3
  88. MO_CLOSE
  89.  
  90. txt_text "tutorial/editor/txt7"
  91. txt_centre
  92. txt_wait
  93.  
  94. E_OPENPROFILE
  95.  
  96. m_wait 3
  97.  
  98. txt_text "tutorial/editor/txt8"
  99. txt_centre
  100. txt_wait
  101.  
  102. m_wait 3
  103.  
  104. E_CLOSEPROFILE
  105.  
  106. txt_text "tutorial/editor/txt9"
  107. txt_centre
  108. txt_wait
  109.  
  110. E_FILENAME "RAM:Test.prj"
  111.  
  112. m_wait 3
  113.  
  114. txt_text "tutorial/editor/txt10"
  115. txt_centre
  116. txt_wait
  117.  
  118. E_PLAYALL
  119.  
  120. m_wait2
  121.  
  122. txt_text "tutorial/editor/txt11"
  123. txt_centre
  124. txt_wait
  125.  
  126. m_wait 1
  127.  
  128. M_CLOSEEDITOR